type net/http.http2Setting
16 uses
net/http (current package)
h2_bundle.go#L2171: func (f *http2SettingsFrame) Setting(i int) http2Setting {
h2_bundle.go#L2173: return http2Setting{
h2_bundle.go#L2214: func (f *http2SettingsFrame) ForeachSetting(fn func(http2Setting) error) error {
h2_bundle.go#L2229: func (f *http2Framer) WriteSettings(settings ...http2Setting) error {
h2_bundle.go#L3024: f.ForeachSetting(func(s http2Setting) error {
h2_bundle.go#L3422: type http2Setting struct {
h2_bundle.go#L3431: func (s http2Setting) String() string {
h2_bundle.go#L3436: func (s http2Setting) Valid() error {
h2_bundle.go#L5519: func (sc *http2serverConn) processSetting(s http2Setting) error {
h2_bundle.go#L7882: initialSettings := []http2Setting{
h2_bundle.go#L7887: initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: max})
h2_bundle.go#L7890: initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
h2_bundle.go#L7893: initialSettings = append(initialSettings, http2Setting{ID: http2SettingHeaderTableSize, Val: maxHeaderTableSize})
h2_bundle.go#L9909: err := f.ForeachSetting(func(s http2Setting) error {
h2_bundle.go#L10327: type http2writeSettings []http2Setting
h2_bundle.go#L10336: return ctx.Framer().WriteSettings([]http2Setting(s)...)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |